From: Steven Hand Date: Fri, 29 Dec 2006 13:00:08 +0000 (+0000) Subject: Remove 'netbuf race' debug output - we get tons of these for ballooned X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15422^2~126 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=c2bb666e0845881fabbafcc87310668bc5509eda;p=xen.git Remove 'netbuf race' debug output - we get tons of these for ballooned down domains, and there's no way for us to distinguish that from the (transient) case of network buffers. Also tidy up comment. Signed-off-by: Steven Hand --- diff --git a/tools/libxc/xc_linux_save.c b/tools/libxc/xc_linux_save.c index 6b6c328a8b..44dba99cd5 100644 --- a/tools/libxc/xc_linux_save.c +++ b/tools/libxc/xc_linux_save.c @@ -915,14 +915,14 @@ int xc_linux_save(int xc_handle, int io_fd, uint32_t dom, uint32_t max_iters, if(!is_mapped(pfn_type[batch])) { - /* not currently in pusedo-physical map -- set bit - in to_fix that we must send this page in last_iter - unless its sent sooner anyhow */ + /* + ** not currently in psuedo-physical map -- set bit + ** in to_fix since we must send this page in last_iter + ** unless its sent sooner anyhow, or it never enters + ** pseudo-physical map (e.g. for ballooned down domains) + */ set_bit(n, to_fix); - if( (iter > 1) && IS_REAL_PFN(n) ) - DPRINTF("netbuf race: iter %d, pfn %x. mfn %lx\n", - iter, n, pfn_type[batch]); continue; }